home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / rarian-sk-rebuild < prev    next >
Text File  |  2009-10-22  |  821b  |  38 lines

  1. #!/bin/bash
  2.  
  3. # Another simple wrapper script.  This time for scrollkeeper-rebuilddb
  4. # This one is slightly more complex in that we have to run a command!
  5. # We also need to pull out the paths from the relevant place first.
  6.  
  7. prefix=/usr
  8. exec_prefix=/usr
  9. bindir=/usr/bin
  10. convert_dir=/usr/share/omf
  11. datarootdir=/usr/share
  12. statedir=/var/lib/rarian
  13. datadir=/usr/share
  14. output_dir=${datadir}/help
  15. package_version=0.8.1
  16. convert_string="REPLACEME"
  17.  
  18. if [ ! 1 ]
  19. then
  20.  
  21. if [ -e $statedir/rarian-update-mtimes ]
  22. then
  23.     for x in $(grep -e '^0:@:' $statedir/rarian-update-mtimes)
  24.     do
  25.     if [[ $convert_string != "REPLACEME" ]]
  26.     then
  27.         convert_string=$convert_string:${x##0:@:}
  28.     else
  29.         convert_string=${x##0:@:}
  30.     fi
  31.     done
  32. else
  33.     convert_string=$convert_dir
  34. fi
  35.  
  36. $bindir/rarian-sk-update -v --clean-index -o $convert_string
  37.  
  38. fi